Plotly Plot

This is an example of a Plotly plot created in R.

library(plotly)
## Loading required package: ggplot2
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
# Create a sample plot using Plotly
data <- data.frame(
  x = rnorm(100),
  y = rnorm(100)
)

plot_ly(data, x = ~x, y = ~y, type = 'scatter', mode = 'markers')